home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / textdemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  110 b   |  8 lines

  1. program TextDemo;
  2. var
  3.   t: Text;
  4. begin
  5.   Rewrite (t, 'hello.txt');
  6.   WriteLn (t, 'Hello, world!')
  7. end.
  8.